home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / examples / exam01 / main.c < prev    next >
C/C++ Source or Header  |  1995-09-27  |  883b  |  64 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6. /*
  7.  *
  8.  *    This source code is CONFIDENTIAL and
  9.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  10.  *    distribution, adaptation or use    may
  11.  *    be subject to civil and    criminal penalties.
  12.  *
  13.  *    Copyright (c) 1993 Algorithms Corporation
  14.  *    3020 Liberty Hills Drive
  15.  *    Franklin, TN  37064
  16.  *
  17.  *    ALL RIGHTS RESERVED.
  18.  *
  19.  *
  20.  *
  21.  */
  22.  
  23.  
  24.  
  25. /*  Always include generics.h (which also includes stdio.h and malloc.h) */
  26.  
  27. #include "generics.h"
  28.  
  29.  
  30. main(int argc, char *argv[])
  31. {
  32.  
  33.     /*  Initialize the Dynace system - once  */
  34.  
  35.     InitDynace(&argc);
  36.     
  37.     return 0;
  38. }
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46. /*
  47.  *
  48.  *    This source code is CONFIDENTIAL and
  49.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  50.  *    distribution, adaptation or use    may
  51.  *    be subject to civil and    criminal penalties.
  52.  *
  53.  *    Copyright (c) 1993 Algorithms Corporation
  54.  *    3020 Liberty Hills Drive
  55.  *    Franklin, TN  37064
  56.  *
  57.  *    ALL RIGHTS RESERVED.
  58.  *
  59.  *
  60.  *
  61.  */
  62.  
  63.  
  64.